summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/activity_emulation.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/activity_emulation.xml')
-rw-r--r--src/android/app/src/main/res/layout/activity_emulation.xml31
1 files changed, 23 insertions, 8 deletions
diff --git a/src/android/app/src/main/res/layout/activity_emulation.xml b/src/android/app/src/main/res/layout/activity_emulation.xml
index 7d7f36925..debc26e6c 100644
--- a/src/android/app/src/main/res/layout/activity_emulation.xml
+++ b/src/android/app/src/main/res/layout/activity_emulation.xml
@@ -1,17 +1,32 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/frame_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:keepScreenOn="true"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/frame_content">
<FrameLayout
android:id="@+id/frame_emulation_fragment"
android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_height="match_parent"/>
- <ImageView
- android:id="@+id/image_icon"
+ <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:transitionName="image_game_icon" />
+ android:orientation="horizontal"
+ android:baselineAligned="false">
-</FrameLayout> \ No newline at end of file
+ <FrameLayout
+ android:id="@+id/frame_menu"
+ android:layout_width="@dimen/menu_width"
+ android:layout_height="match_parent"
+ tools:layout="@layout/fragment_ingame_menu"/>
+
+ <FrameLayout
+ android:id="@+id/frame_submenu"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"/>
+
+ </LinearLayout>
+
+</FrameLayout>